0:00–0:10
Recap
0:10–0:35
Lecture
0:35–1:40
Guided Lab
1:40–1:50
Bonus
1:50–2:00
Debrief
0:00 – 0:10 Recap · 10 min

Week 2 debrief & transition to email infrastructure

0:10 – 0:35 Lecture · 25 min

Exchange Online mailbox types & permissions model

Exchange Online has several mailbox types that serve different purposes, and a permissions model that is easy to misconfigure if you don't understand the distinctions. Students need to know what each type is for and which permissions grant what access before touching the Exchange admin centre.

TypeWhat it isLicence requiredLakeview Logistics use
User mailboxStandard mailbox tied to a licensed user account. Has its own login and password.Yes — Business Standard or higherAll 10 Lakeview Logistics employees
Shared mailboxA mailbox accessed by multiple users with delegated permissions. No dedicated licence required (up to 50 GB). No direct login.No licence requiredinfo@, accounts@, support@ addresses
Room mailboxA resource mailbox representing a physical meeting room. Accepts/declines calendar invites automatically.No licence requiredBoardroom, Meeting Room A
Equipment mailboxA resource mailbox representing bookable equipment. Same auto-accept model as room.No licence requiredProjector, Company Van
PermissionWhat it grantsTypical use caseVisible to recipients?
Full AccessOpen and read the mailbox, manage folders, mark items read — but cannot send email from itEA or assistant accessing a manager's mailboxNo
Send AsSend email that appears to come directly from the mailbox address — recipient sees only the mailbox address, not the senderSending from a shared mailbox like info@company.comNo — looks like it came from the mailbox
Send on BehalfSend email on behalf of the mailbox — recipient sees "User X on behalf of Mailbox Y"Assistant sending on behalf of an executiveYes — "on behalf of" is visible
Instructor note: The Send As vs Send on Behalf distinction is one of the most commonly confused concepts in Exchange administration. Show both in action on the projector — one email sent using Send As (recipient sees only the shared mailbox address) and one sent on behalf (recipient sees "on behalf of"). The visual difference makes the distinction stick far better than a definition alone.
0:35 – 1:40 Guided lab · 65 min

Lab 3-A: Building the Lakeview Logistics mailbox infrastructure

Students create shared mailboxes, resource mailboxes, and configure mailbox permissions for real-world Lakeview Logistics scenarios — then test the permissions by sending email as a shared mailbox address.

Display nameEmail addressMembers (Full Access + Send As)
Lakeview Logistics Infoinfo@[yoursubdomain]Sarah Chen, Marcus Webb
Accounts Payableaccounts@[yoursubdomain]Priya Nair, Tom Bellamy
HR Departmenthr@[yoursubdomain]Diane Rousseau
Display nameTypeEmail addressCapacity / Notes
BoardroomRoomboardroom@[yoursubdomain]Capacity: 12 · Booking window: 180 days
Meeting Room ARoommeetingrooma@[yoursubdomain]Capacity: 6 · Booking window: 180 days
Company VanEquipmentcompanyvan@[yoursubdomain]No capacity · Auto-accept bookings
Exchange Online PowerShell module: If not already installed, run Install-Module ExchangeOnlineManagement before connecting. This is a separate module from Microsoft Graph PowerShell — Exchange Online has its own management shell. Students will use both throughout Week 3.
Instructor note: Step 6's PowerShell output is a useful checkpoint — it confirms the lab state before Day 2 builds on it. If any mailbox type is missing, the issue is easier to diagnose from the output than from the admin centre. Have students screenshot or copy the output into their Lab Journal before disconnecting.
1:40 – 1:50 Bonus material · 10 min

⭐ Bonus: Mailbox quotas & litigation hold

⭐ Bonus A — Mailbox size quotas via PowerShell
  • Run the following to view quota settings for all user mailboxes:
    Get-Mailbox -ResultSize Unlimited | Select-Object DisplayName, ProhibitSendQuota, ProhibitSendReceiveQuota, IssueWarningQuota | Format-Table -AutoSize
  • Set a custom quota for the Accounts Payable shared mailbox:
    Set-Mailbox "Accounts Payable" -ProhibitSendQuota 45GB -ProhibitSendReceiveQuota 50GB -IssueWarningQuota 40GB -UseDatabaseQuotaDefaults $false
  • Verify the change: Get-Mailbox "Accounts Payable" | Select-Object *Quota*
  • In your Lab Journal: what are the three quota thresholds, what happens at each one, and why would you set a higher quota on an Accounts Payable mailbox than a standard user mailbox?
⭐ Bonus B — Litigation hold introduction
  • In the EAC, open any user mailbox → Others tab → Litigation hold → Enable
  • Set hold duration to 2555 days (7 years) and add a note: "Litigation hold — financial records retention"
  • Verify via PowerShell: Get-Mailbox -Identity [user] | Select-Object LitigationHoldEnabled, LitigationHoldDuration, LitigationHoldOwner
  • In your Lab Journal: what does litigation hold do to a mailbox that a standard deletion does not protect against? When would a real organisation apply this, and what legal context typically triggers it?
1:50 – 2:00 Debrief · 10 min

Reflection & preview

Learning outcomes — by end of Day 1, students can…
Identify all mailbox typesDescribe user, shared, room, and equipment mailboxes and state the licence requirement for each
Create shared mailboxesProvision a shared mailbox with correct email address and delegate Full Access and Send As
Create resource mailboxesCreate room and equipment mailboxes with appropriate booking policies
Configure mailbox permissionsDistinguish Full Access, Send As, and Send on Behalf and apply each correctly
Audit mailboxes via PowerShellUse Get-Mailbox to produce a typed mailbox inventory and verify configuration
What you need ready
Exchange Online PowerShell module installed Week 2 assessments marked and returned Slide deck: mailbox types & permissions Lab 3-A step sheet
Day 2 →Course Outline